API Documentation
Deallocator.h
1 // Deallocator.h
3 //
5 
6 namespace nkMemory
7 {
11  template <typename T>
13  {
14  public :
15 
19  Deallocator () = default ;
23  virtual ~Deallocator () = default ;
24 
30  virtual void deallocate (T* object) = 0 ;
31  } ;
32 }
nkMemory::Deallocator::~Deallocator
virtual ~Deallocator()=default
nkMemory::Deallocator::deallocate
virtual void deallocate(T *object)=0
nkMemory::Deallocator
Interface used for deallocating memory.
Definition: Deallocator.h:13
nkMemory::Deallocator::Deallocator
Deallocator()=default
nkMemory
Encompasses all API of component NilkinsMemory.
Definition: Allocator.h:7